[SPARK-40998][SQL] Rename the error class _LEGACY_ERROR_TEMP_0040 to INVALID_IDENTIFIER#38484
Closed
MaxGekk wants to merge 1 commit intoapache:masterfrom
Closed
[SPARK-40998][SQL] Rename the error class _LEGACY_ERROR_TEMP_0040 to INVALID_IDENTIFIER#38484MaxGekk wants to merge 1 commit intoapache:masterfrom
_LEGACY_ERROR_TEMP_0040 to INVALID_IDENTIFIER#38484MaxGekk wants to merge 1 commit intoapache:masterfrom
Conversation
_LEGACY_ERROR_TEMP_0040 to INVALID_IDENTIFIER_LEGACY_ERROR_TEMP_0040 to INVALID_IDENTIFIER
_LEGACY_ERROR_TEMP_0040 to INVALID_IDENTIFIER_LEGACY_ERROR_TEMP_0040 to INVALID_IDENTIFIER
Member
Author
|
@srielau @itholic @panbingkun @LuciferYang @cloud-fan Could you review this PR, please. |
cloud-fan
approved these changes
Nov 3, 2022
Member
Author
|
Merging to master. Thank you, @LuciferYang @srielau and @cloud-fan for review. |
SandishKumarHN
pushed a commit
to SandishKumarHN/spark
that referenced
this pull request
Dec 12, 2022
…o `INVALID_IDENTIFIER` ### What changes were proposed in this pull request? In the PR, I propose to assign the proper name `INVALID_IDENTIFIER ` to the legacy error class `_LEGACY_ERROR_TEMP_0040 `, and modify test suite to use `checkError()` which checks the error class name, context and etc. ### Why are the changes needed? Proper name improves user experience w/ Spark SQL. ### Does this PR introduce _any_ user-facing change? Yes, the PR changes an user-facing error message. ### How was this patch tested? By running the modified test suites: ``` $ build/sbt "core/testOnly *SparkThrowableSuite" $ build/sbt "test:testOnly *ErrorParserSuite" ``` Closes apache#38484 from MaxGekk/invalid-identifier-error-class. Authored-by: Max Gekk <max.gekk@gmail.com> Signed-off-by: Max Gekk <max.gekk@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
In the PR, I propose to assign the proper name
INVALID_IDENTIFIERto the legacy error class_LEGACY_ERROR_TEMP_0040, and modify test suite to usecheckError()which checks the error class name, context and etc.Why are the changes needed?
Proper name improves user experience w/ Spark SQL.
Does this PR introduce any user-facing change?
Yes, the PR changes an user-facing error message.
How was this patch tested?
By running the modified test suites: